home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amigappc / libsrc / math / asin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  77 b   |  7 lines

  1. #include <math.h>
  2.  
  3. double asin(double x)
  4. {
  5.   return (atan(x/sqrt(1-x*x)));
  6. }
  7.